home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / planetkit / amigakit / mui36dev.lha / MUI / Developer / C / DLib / newobj.c < prev    next >
C/C++ Source or Header  |  1996-07-13  |  224b  |  11 lines

  1. #include <clib/muimaster_protos.h>
  2. #include <pragmas/muimaster_pragmas.h>
  3.  
  4. extern struct Library *MUIMasterBase;
  5.  
  6. APTR MUI_NewObject(char *class, Tag tag1, ...)
  7. {
  8.  return(MUI_NewObjectA(class, (struct TagItem *) &tag1));
  9. }
  10.  
  11.